home *** CD-ROM | disk | FTP | other *** search
/ Internet News 2001 March / Internet News 2001-03 - CD-ROM / IN200103.ISO / Mac / iView / iviewpro.hqx / iView mediaPro ƒ / iView mediaPro v1.0 / Script Examples / Window Class < prev   
Encoding:
Text File  |  2000-12-24  |  1.5 KB  |  46 lines

  1. tell application "iView mediaPro"
  2.     
  3.     -- methods for accessing windows
  4.     -- -----------------------------
  5.     -- get the name of window 1 -- numeric index (e.g. 1)
  6.     -- get the name of the window before window 2 -- before/after another element
  7.     -- get the name of windows 1 thru 2 -- as a range of elements [result is list]
  8.     -- get the index of window "Catalog #2" -- by name
  9.     -- get the index of every window whose name contains "cat" -- test
  10.     
  11.     -- get/set window properties
  12.     -- ----------------------------
  13.     -- get the view of window 1
  14.     -- set the view of window 1 to thumbnail view
  15.     -- get the bounds of window 1
  16.     -- set the bounds of window 1 to {6, 42, 672, 730}
  17.     -- get the importing of window 1
  18.     -- set the importing of window 1 to false
  19.     -- set myList to the selection of window 1
  20.     -- set the selection of window 1 to {1, 4} -- or, for single selection
  21.     -- set the selection of window 1 to 4
  22.     -- get the password of window 1
  23.     -- set the password of window 1 to "8081"
  24.     
  25.     -- function samples
  26.     -- ----------------
  27.     -- count windows
  28.     -- count (windows whose name contains "cat")
  29.     -- exists window 10
  30.     -- name of window 1
  31.     -- data size of the name of window 1
  32.     
  33.     
  34.     -- command samples
  35.     -- ---------------
  36.     -- make window
  37.     -- close window 1 with saving
  38.     -- save window 1
  39.     -- save window 1 in file "mac os:test 1"
  40.     -- print window 1 -- asks for settings
  41.     -- print every window -- asks for settings
  42.     -- if (count windows) > 1 then select window 2
  43.     -- run slide show of window 1
  44.     -- select window "Catalog #2"
  45.     
  46. end tell